aec7cbf8bbad89368cc1e864e10e30d8558f38ae,src/com/codefan/epubutils/Runner.java,Runner,main,#String[]#,5
Before Change
bookSection = reader.readSection(epubContent, i);
System.out.println("\n" + i + "st Book Section: \nlabel: " + bookSection.getLabel() + "; media-type: " + bookSection.getMediaType());
System.out.println("content: " + getHtmlBody(bookSection.getSectionContent()));
}
// int x = 5;
After Change
System.out.println("\n" + i + "st Book Section: \nlabel: " + bookSection.getLabel() + "; media-type: " + bookSection.getMediaType());
// System.out.println("content: " + getHtmlBody(bookSection.getSectionContent()));
System.out.println("content: " + bookSection.getSectionContent());
}
// int x = 5;